include<stdio.h>

2016-5-30 14:45
请先登录。
#include<stdio.h> #include<stdlib.h> typedef struct Node { int no; int flag; }Node; Node p[5]={{1,0},{2,0},{3,0},{4,...
/* 班级:5班 姓名:梁航鸣 学号:2014011779 */ #include<stdio.h> #include <stdlib.h> typedef struct Node { int no;//作业数 int flag;//标识 }...
/*  * 姓名:杨亚旺  * 班级:4班  * 作业:死锁  * 学号:2014011695  */ #include<stdio.h> #include<stdlib.h> typedef ...
#include<stdio.h> #include <stdlib.h> typedef struct Node { int no; int flag; }Node; Node p[5]={{1,0},{2,0},{3,0},{4,0},{5...
/* * 作业:死锁避免模拟 * 姓名:孙成 * 学号:2014011780 */ #include<stdio.h> #include<windows.h> typedef struct Node { int no; int flag; }No...
/*姓名:修坤朝 班级:7班 学号:2014011835 任务;死锁避免的模拟 */ #include<stdio.h> #include<windows.h> typedef struct Node { int no;...
/** * 文件:Node * 作业:实验二 死锁避免的模拟 * 姓名:李晓阳 * 学号:2014011782 * 班级:6班 * */ #include<stdio.h> #include <stdlib.h> typedef s...
/* * 姓名: 冯鑫 * 学号: 2014011716 * 时间: 2016年5月16日 */ #include<stdio.h> #include<stdlib.h> #include <malloc.h> typedef struc...
/*姓名:武洪佳   班级:4班   学号:2014011727*/      #include<stdio.h> #include<stdlib.h&...
#include<stdio.h> #include<stdlib.h> #define L 5 #define Q 3 typedef struct Node { int no; int flag; }Node; Node p[L]={{1,0...
/* 姓名:杨晨 班级:4班 学号:2014011713 */ #include<stdio.h> #include<stdlib.h> #define NUM 5 #define RESOURCE 3 typedef struct Node {...
/* 实验二:死锁避免的模拟 姓名:李霁堃 班级:6 完成日期:2016/5/17 */ #include<stdio.h> #include<iostream> #include<malloc.h> typede...
/* 姓名:王安琪 班级:6班 学号:2014011815 */ #include<stdio.h> #include<stdlib.h> typedef struct Node { int no; int flag; }Node; Node ...
/* 姓名:赵航 学号:2014011784 作业:实验二 */ #include<stdio.h> #include<stdlib.h> typedef struct Node { int no;//进程号 int flag;//判断完成的标...
#include<stdio.h> #include<stdlib.h> /* 姓名:刘云杉 班级:6班 学号:2014011813 */ typedef struct Node { int no; int flag; }Node; Node...
/* 班级:6班 姓名:陈向冬 学号:2014011801 */ #include<stdio.h> #include <stdlib.h> typedef struct Node { int no;//作业数 int flag;//标识 }...
/* *姓名:3班刘镯 *功能:避免死锁 *时间:2016/5/15 */ //如何进行安全性检测 #include<stdio.h> #include<stdlib.h> typedef struct Node {    ...
#include<stdio.h> #include<windows.h> typedef struct Node { int no; int flag; }Node; Node p[5]={{1,0},{2,0},{3,0},{4,0},{5...
/* 姓名:刘松 班级:2014级5班 学号:2014011760 任务:实验二 死锁避免的模拟 */ #include<stdio.h> #include<malloc.h> #include<stdlib.h> typedef str...
#include<stdio.h> #include<stdlib.h> #include<malloc.h> typedef struct Node { int no; int flag; }Node; Node p[M] = ...
/* *学号:2014011864 *姓名:韩童璐 *任务:死锁避免的模拟 */ #include<stdio.h> #include<stdlib.h> #pragma warning(disable:4996) #include<mallo...
#include<stdio.h> #include<stdlib.h> #include<malloc.h> typedef struct work{     int  Num;//作业号   ...
#include<stdio.h> #include<stdlib.h> #include<malloc.h> #define M 5//进程 #define N 3//资源 typedef struct Node { int no;...
#include<stdio.h> #include<stdlib.h> typedef struct Node { int no; int flag; }Node; Node p[5]={{1,0},{2,0},{3,0},{4,0},{5,...
#include<stdio.h> #include<malloc.h> typedef struct work{     int  Num;//作业号     int ...
#include<stdio.h> #include<stdlib.h> int main(void) {char str1[6]={"hello"}; char str2[7]={"world!"}; char str3[12]; int a,b...
#include<stdio.h> #include<stdlib.h> int main(void) { int arr1[4]={3,6,9,11}; int arr2[5]={1,3,8,45,89}; int arr3[9];...
#include<stdio.h> #include<stdlib.h> int main(void) { int a[6]={1,2,3,4,5,6}; int i; int b[6]; for(i=0;i<6;i++) { ...
#include<stdio.h> #include<stdlib.h> typedef struct Node{ int no; int flag; }Node; Node p[5]={{1,0},{2,0},{3,0},{4,0},{5,...
/* *姓名:李静 *学号:2014011660 *班级:3班 */ #include<stdio.h> #include<stdlib.h> typedef struct Node { int num; int flag; }Node; ...